home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue55 / Splat / splat.dpr < prev    next >
Encoding:
Text File  |  2000-01-26  |  402 b   |  23 lines

  1. program Splat;
  2.  
  3. // Copyright ⌐ 2000 Tempest Software, Inc.
  4.  
  5. {$R 'SoundRes.res' 'SoundRes.rc'}
  6.  
  7. uses
  8.   Forms,
  9.   SysUtils,
  10.   Main in 'Main.pas' {MainForm},
  11.   Types in 'Types.pas',
  12.   Shapes in 'Shapes.pas',
  13.   KeyText in 'KeyText.pas';
  14.  
  15. {$R *.RES}
  16.  
  17. begin
  18.   Application.Initialize;
  19.   Application.Title := 'Splat';
  20.   Application.CreateForm(TMainForm, MainForm);
  21.   Application.Run;
  22. end.
  23.